Home

Operator Usage

Name

if-else

Description

if( condition ):
    if-statements ...
else:
    else-statements ...
end:

if condition evaluates to |yes> then compile and run the given if-statements
otherwise, run the given else-statements


Examples


See also

if, test-if.sw3

Operator type

statement